alertnote "It looks like that application returned control to me before the download was complete (otherwise there was an error) -- probably Netscape/IE. When it's done, or if there was an error hit Ok."
}
# update database
remote::updateDatabase $idx 1
package::makeMenu
# install
set filepre [lindex [split $file .] 0]
# decode the downloaded file (this may happen automatically)
set f_encoded [glob -nocomplain [file join ${downloadFolder} "${filepre}*{.hqx,.bin}"]]
set f_stuffed [glob -nocomplain [file join ${downloadFolder} "${filepre}*.sit"]]
if {[llength $f_encoded] == 1} {
if {[llength $f_stuffed] == 1} {
# downloader was set to decode automatically --- we must wait
set ff [lindex $f_stuffed 0]
while {![file writable $ff]} {
switchTo 'SITx'
}
switchTo 'ALFA'
} else {
# downloader not set to decode automatically
set ff [lindex $f_encoded 0]
message "Decoding [file tail $ff]…"
set name [file tail [app::launchFore SITx]]
sendOpenEvent -r 'SITx' $ff
}
}
# decompress the downloaded file (this may happen automatically)
set f_stuffed [glob -nocomplain [file join ${downloadFolder} "${filepre}*.sit"]]
set f_results [glob -t TEXT -nocomplain [file join ${downloadFolder} "${filepre}*"]]